made handle box test non-modal, so other test can interact with handle
authorTim Janik <timj@imendio.com>
Thu, 3 May 2007 14:33:17 +0000 (14:33 +0000)
committerTim Janik <timj@src.gnome.org>
Thu, 3 May 2007 14:33:17 +0000 (14:33 +0000)
Thu May  3 16:27:34 2007  Tim Janik  <timj@imendio.com>

        * tests/testgtk.c (create_handle_box): made handle box test non-modal,
        so other test can interact with handle boxes.

svn path=/trunk/; revision=17785

ChangeLog
tests/testgtk.c

index 10a7f098cb9611a0201206c8fecc452d513da683..ac865bf3b04ac0ea62abaca750b7d1e7d1776592 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu May  3 16:27:34 2007  Tim Janik  <timj@imendio.com>
+
+       * tests/testgtk.c (create_handle_box): made handle box test non-modal,
+       so other test can interact with handle boxes.
+
 2007-05-02  Emmanuele Bassi  <ebassi@gnome.org>
 
        Add search file support in the GtkFileChooser. Original patch
index dcab31c4471bb5bc9db0b8877e8dd5b44f72aeba..82894e970613e66ec771f5639282fea25e8ec2dd 100644 (file)
@@ -2321,7 +2321,7 @@ create_handle_box (GtkWidget *widget)
     
     gtk_window_set_screen (GTK_WINDOW (window),
                           gtk_widget_get_screen (widget));
-    gtk_window_set_modal (GTK_WINDOW (window), TRUE);
+    gtk_window_set_modal (GTK_WINDOW (window), FALSE);
     gtk_window_set_title (GTK_WINDOW (window),
                          "Handle Box Test");
     gtk_window_set_resizable (GTK_WINDOW (window), TRUE);
@@ -2698,7 +2698,7 @@ create_get_image (GtkWidget *widget)
                                              src);
       
       gtk_box_pack_start (GTK_BOX (hbox),
-                          sw, TRUE, TRUE, 0);                          
+                          sw, TRUE, TRUE, 0);
 
 
       vbox = gtk_vbox_new (FALSE, 3);